home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / ifilter.h < prev    next >
C/C++ Source or Header  |  1996-03-05  |  3KB  |  73 lines

  1. /* Copyright (C) 1994, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* ifilter.h */
  20. /* Filter creation utilities for Ghostscript */
  21. /* Requires oper.h, stream.h, strimpl.h */
  22. #include "istream.h"
  23. #include "ivmspace.h"
  24.  
  25. /*
  26.  * Define the utility procedures for creating filters.
  27.  * Note that a filter will be allocated in global VM iff the source/target
  28.  * and all relevant parameters (if any) are in global VM.
  29.  */
  30. int filter_read(P5(
  31.     /* Operand stack pointer that was passed to zfxxx operator */
  32.            os_ptr op,
  33.     /* # of parameters to pop off o-stack, */
  34.     /* not counting the source/target */
  35.            int npop,
  36.     /* Template for stream */
  37.            const stream_template *template,
  38.     /* Initialized s_xxx_state, 0 if no separate state */
  39.            stream_state *st,
  40.     /* Max of space attributes of all parameters referenced by */
  41.     /* the state, 0 if no such parameters */
  42.            uint space
  43.            ));
  44. int filter_write(P5(os_ptr op, int npop, const stream_template *template,
  45.             stream_state *st, uint space));
  46. /*
  47.  * Define a simplified interface for streams with no parameters or state.
  48.  * These procedures also pop the top o-stack element if it is a dictionary.
  49.  */
  50. int filter_read_simple(P2(os_ptr op, const stream_template *template));
  51. int filter_write_simple(P2(os_ptr op, const stream_template *template));
  52.  
  53. /* Mark a filter stream as temporary. */
  54. /* See stream.h for the meaning of is_temp. */
  55. void filter_mark_temp(P2(const ref *fop, int is_temp));
  56.  
  57. /*
  58.  * Define the state of a procedure-based stream.
  59.  * Note that procedure-based streams are defined at the Ghostscript
  60.  * interpreter level, unlike all other stream types which depend only
  61.  * on the stream package and the memory manager.
  62.  */
  63. typedef struct stream_proc_state_s {
  64.     stream_state_common;
  65.     bool eof;
  66.     uint index;        /* current index within data */
  67.     ref proc;
  68.     ref data;
  69. } stream_proc_state;
  70. #define private_st_stream_proc_state() /* in zfproc.c */\
  71.   gs_private_st_complex_only(st_sproc_state, stream_proc_state,\
  72.     "procedure stream state", sproc_clear_marks, sproc_enum_ptrs, sproc_reloc_ptrs, 0)
  73.